home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / ISp Sample / Source / ISp_SampleResources.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.2 KB  |  68 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ISp_SampleResources.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                xxx put dri here xxx
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            xxx put technology here xxx
  17.  
  18.     Writers:
  19.  
  20.         (BWS)    Brent Schorsch
  21.  
  22.     Change History (most recent first):
  23.  
  24.        <SP1>      7/1/99    BWS        first checked in
  25. */
  26.  
  27. #ifndef __ISP_SAMPLERESOURCES__
  28. #define __ISP_SAMPLERESOURCES__
  29.  
  30. //•    ————————————————————————————————————————    Includes
  31. //•    ————————————————————————————————————————    Public Definitions
  32. //•    ————————————————————————————————————————    Public Types
  33.  
  34. #define     kISpSampleCreator            '????'
  35. #define     kISpSampleNeedsVersion        'isps'
  36.  
  37. enum
  38. {
  39.     kSTRn_NeedNames        =    1000,
  40.     kSTRn_WeaponNames    =    1001
  41. };
  42.  
  43. enum
  44. {
  45.     kisap_ISpSample            =    128,
  46.  
  47.     ksetl_ISpSample            =    128,
  48.  
  49.     ktset_DefaultKeyboard    =    200,
  50.     ktset_LeftyKeyboard        =    201,
  51.     
  52.     ktset_DefaultMouse        =    300,
  53.     ktset_YawMouse            =    301
  54. };
  55.  
  56. //•    ————————————————————————————————————————    Public Variables
  57. //•    ————————————————————————————————————————    Public Functions
  58.  
  59. #ifdef __cplusplus
  60. extern "C" {
  61. #endif
  62.  
  63. #ifdef __cplusplus
  64. }
  65. #endif
  66.  
  67. #endif
  68.